home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / h2xs < prev    next >
Text File  |  2006-04-25  |  60KB  |  2,170 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. use warnings;
  6.  
  7. =head1 NAME
  8.  
  9. h2xs - convert .h C header files to Perl extensions
  10.  
  11. =head1 SYNOPSIS
  12.  
  13. B<h2xs> [B<OPTIONS> ...] [headerfile ... [extra_libraries]]
  14.  
  15. B<h2xs> B<-h>|B<-?>|B<--help>
  16.  
  17. =head1 DESCRIPTION
  18.  
  19. I<h2xs> builds a Perl extension from C header files.  The extension
  20. will include functions which can be used to retrieve the value of any
  21. #define statement which was in the C header files.
  22.  
  23. The I<module_name> will be used for the name of the extension.  If
  24. module_name is not supplied then the name of the first header file
  25. will be used, with the first character capitalized.
  26.  
  27. If the extension might need extra libraries, they should be included
  28. here.  The extension Makefile.PL will take care of checking whether
  29. the libraries actually exist and how they should be loaded.  The extra
  30. libraries should be specified in the form -lm -lposix, etc, just as on
  31. the cc command line.  By default, the Makefile.PL will search through
  32. the library path determined by Configure.  That path can be augmented
  33. by including arguments of the form B<-L/another/library/path> in the
  34. extra-libraries argument.
  35.  
  36. =head1 OPTIONS
  37.  
  38. =over 5
  39.  
  40. =item B<-A>, B<--omit-autoload>
  41.  
  42. Omit all autoload facilities.  This is the same as B<-c> but also
  43. removes the S<C<use AutoLoader>> statement from the .pm file.
  44.  
  45. =item B<-B>, B<--beta-version>
  46.  
  47. Use an alpha/beta style version number.  Causes version number to
  48. be "0.00_01" unless B<-v> is specified.
  49.  
  50. =item B<-C>, B<--omit-changes>
  51.  
  52. Omits creation of the F<Changes> file, and adds a HISTORY section to
  53. the POD template.
  54.  
  55. =item B<-F>, B<--cpp-flags>=I<addflags>
  56.  
  57. Additional flags to specify to C preprocessor when scanning header for
  58. function declarations.  Writes these options in the generated F<Makefile.PL>
  59. too.
  60.  
  61. =item B<-M>, B<--func-mask>=I<regular expression>
  62.  
  63. selects functions/macros to process.
  64.  
  65. =item B<-O>, B<--overwrite-ok>
  66.  
  67. Allows a pre-existing extension directory to be overwritten.
  68.  
  69. =item B<-P>, B<--omit-pod>
  70.  
  71. Omit the autogenerated stub POD section.
  72.  
  73. =item B<-X>, B<--omit-XS>
  74.  
  75. Omit the XS portion.  Used to generate templates for a module which is not
  76. XS-based.  C<-c> and C<-f> are implicitly enabled.
  77.  
  78. =item B<-a>, B<--gen-accessors>
  79.  
  80. Generate an accessor method for each element of structs and unions. The
  81. generated methods are named after the element name; will return the current
  82. value of the element if called without additional arguments; and will set
  83. the element to the supplied value (and return the new value) if called with
  84. an additional argument. Embedded structures and unions are returned as a
  85. pointer rather than the complete structure, to facilitate chained calls.
  86.  
  87. These methods all apply to the Ptr type for the structure; additionally
  88. two methods are constructed for the structure type itself, C<_to_ptr>
  89. which returns a Ptr type pointing to the same structure, and a C<new>
  90. method to construct and return a new structure, initialised to zeroes.
  91.  
  92. =item B<-b>, B<--compat-version>=I<version>
  93.  
  94. Generates a .pm file which is backwards compatible with the specified
  95. perl version.
  96.  
  97. For versions < 5.6.0, the changes are.
  98.     - no use of 'our' (uses 'use vars' instead)
  99.     - no 'use warnings'
  100.  
  101. Specifying a compatibility version higher than the version of perl you
  102. are using to run h2xs will have no effect.  If unspecified h2xs will default
  103. to compatibility with the version of perl you are using to run h2xs.
  104.  
  105. =item B<-c>, B<--omit-constant>
  106.  
  107. Omit C<constant()> from the .xs file and corresponding specialised
  108. C<AUTOLOAD> from the .pm file.
  109.  
  110. =item B<-d>, B<--debugging>
  111.  
  112. Turn on debugging messages.
  113.  
  114. =item B<-e>, B<--omit-enums>=[I<regular expression>]
  115.  
  116. If I<regular expression> is not given, skip all constants that are defined in
  117. a C enumeration. Otherwise skip only those constants that are defined in an
  118. enum whose name matches I<regular expression>.
  119.  
  120. Since I<regular expression> is optional, make sure that this switch is followed
  121. by at least one other switch if you omit I<regular expression> and have some
  122. pending arguments such as header-file names. This is ok:
  123.  
  124.     h2xs -e -n Module::Foo foo.h
  125.  
  126. This is not ok:
  127.  
  128.     h2xs -n Module::Foo -e foo.h
  129.  
  130. In the latter, foo.h is taken as I<regular expression>.
  131.  
  132. =item B<-f>, B<--force>
  133.  
  134. Allows an extension to be created for a header even if that header is
  135. not found in standard include directories.
  136.  
  137. =item B<-g>, B<--global>
  138.  
  139. Include code for safely storing static data in the .xs file.
  140. Extensions that do no make use of static data can ignore this option.
  141.  
  142. =item B<-h>, B<-?>, B<--help>
  143.  
  144. Print the usage, help and version for this h2xs and exit.
  145.  
  146. =item B<-k>, B<--omit-const-func>
  147.  
  148. For function arguments declared as C<const>, omit the const attribute in the
  149. generated XS code.
  150.  
  151. =item B<-m>, B<--gen-tied-var>
  152.  
  153. B<Experimental>: for each variable declared in the header file(s), declare
  154. a perl variable of the same name magically tied to the C variable.
  155.  
  156. =item B<-n>, B<--name>=I<module_name>
  157.  
  158. Specifies a name to be used for the extension, e.g., S<-n RPC::DCE>
  159.  
  160. =item B<-o>, B<--opaque-re>=I<regular expression>
  161.  
  162. Use "opaque" data type for the C types matched by the regular
  163. expression, even if these types are C<typedef>-equivalent to types
  164. from typemaps.  Should not be used without B<-x>.
  165.  
  166. This may be useful since, say, types which are C<typedef>-equivalent
  167. to integers may represent OS-related handles, and one may want to work
  168. with these handles in OO-way, as in C<$handle-E<gt>do_something()>.
  169. Use C<-o .> if you want to handle all the C<typedef>ed types as opaque
  170. types.
  171.  
  172. The type-to-match is whitewashed (except for commas, which have no
  173. whitespace before them, and multiple C<*> which have no whitespace
  174. between them).
  175.  
  176. =item B<-p>, B<--remove-prefix>=I<prefix>
  177.  
  178. Specify a prefix which should be removed from the Perl function names,
  179. e.g., S<-p sec_rgy_> This sets up the XS B<PREFIX> keyword and removes
  180. the prefix from functions that are autoloaded via the C<constant()>
  181. mechanism.
  182.  
  183. =item B<-s>, B<--const-subs>=I<sub1,sub2>
  184.  
  185. Create a perl subroutine for the specified macros rather than autoload
  186. with the constant() subroutine.  These macros are assumed to have a
  187. return type of B<char *>, e.g.,
  188. S<-s sec_rgy_wildcard_name,sec_rgy_wildcard_sid>.
  189.  
  190. =item B<-t>, B<--default-type>=I<type>
  191.  
  192. Specify the internal type that the constant() mechanism uses for macros.
  193. The default is IV (signed integer).  Currently all macros found during the
  194. header scanning process will be assumed to have this type.  Future versions
  195. of C<h2xs> may gain the ability to make educated guesses.
  196.  
  197. =item B<--use-new-tests>
  198.  
  199. When B<--compat-version> (B<-b>) is present the generated tests will use
  200. C<Test::More> rather than C<Test> which is the default for versions before
  201. 5.7.2 .   C<Test::More> will be added to PREREQ_PM in the generated
  202. C<Makefile.PL>.
  203.  
  204. =item B<--use-old-tests>
  205.  
  206. Will force the generation of test code that uses the older C<Test> module.
  207.  
  208. =item B<--skip-exporter>
  209.  
  210. Do not use C<Exporter> and/or export any symbol.
  211.  
  212. =item B<--skip-ppport>
  213.  
  214. Do not use C<Devel::PPPort>: no portability to older version.
  215.  
  216. =item B<--skip-autoloader>
  217.  
  218. Do not use the module C<AutoLoader>; but keep the constant() function
  219. and C<sub AUTOLOAD> for constants.
  220.  
  221. =item B<--skip-strict>
  222.  
  223. Do not use the pragma C<strict>.
  224.  
  225. =item B<--skip-warnings>
  226.  
  227. Do not use the pragma C<warnings>.
  228.  
  229. =item B<-v>, B<--version>=I<version>
  230.  
  231. Specify a version number for this extension.  This version number is added
  232. to the templates.  The default is 0.01, or 0.00_01 if C<-B> is specified.
  233. The version specified should be numeric.
  234.  
  235. =item B<-x>, B<--autogen-xsubs>
  236.  
  237. Automatically generate XSUBs basing on function declarations in the
  238. header file.  The package C<C::Scan> should be installed. If this
  239. option is specified, the name of the header file may look like
  240. C<NAME1,NAME2>. In this case NAME1 is used instead of the specified
  241. string, but XSUBs are emitted only for the declarations included from
  242. file NAME2.
  243.  
  244. Note that some types of arguments/return-values for functions may
  245. result in XSUB-declarations/typemap-entries which need
  246. hand-editing. Such may be objects which cannot be converted from/to a
  247. pointer (like C<long long>), pointers to functions, or arrays.  See
  248. also the section on L<LIMITATIONS of B<-x>>.
  249.  
  250. =back
  251.  
  252. =head1 EXAMPLES
  253.  
  254.  
  255.     # Default behavior, extension is Rusers
  256.     h2xs rpcsvc/rusers
  257.  
  258.     # Same, but extension is RUSERS
  259.     h2xs -n RUSERS rpcsvc/rusers
  260.  
  261.     # Extension is rpcsvc::rusers. Still finds <rpcsvc/rusers.h>
  262.     h2xs rpcsvc::rusers
  263.  
  264.     # Extension is ONC::RPC.  Still finds <rpcsvc/rusers.h>
  265.     h2xs -n ONC::RPC rpcsvc/rusers
  266.  
  267.     # Without constant() or AUTOLOAD
  268.     h2xs -c rpcsvc/rusers
  269.  
  270.     # Creates templates for an extension named RPC
  271.     h2xs -cfn RPC
  272.  
  273.     # Extension is ONC::RPC.
  274.     h2xs -cfn ONC::RPC
  275.  
  276.     # Extension is Lib::Foo which works at least with Perl5.005_03.
  277.     # Constants are created for all #defines and enums h2xs can find
  278.     # in foo.h.
  279.     h2xs -b 5.5.3 -n Lib::Foo foo.h
  280.  
  281.     # Extension is Lib::Foo which works at least with Perl5.005_03.
  282.     # Constants are created for all #defines but only for enums
  283.     # whose names do not start with 'bar_'.
  284.     h2xs -b 5.5.3 -e '^bar_' -n Lib::Foo foo.h
  285.  
  286.     # Makefile.PL will look for library -lrpc in
  287.     # additional directory /opt/net/lib
  288.     h2xs rpcsvc/rusers -L/opt/net/lib -lrpc
  289.  
  290.     # Extension is DCE::rgynbase
  291.     # prefix "sec_rgy_" is dropped from perl function names
  292.     h2xs -n DCE::rgynbase -p sec_rgy_ dce/rgynbase
  293.  
  294.     # Extension is DCE::rgynbase
  295.     # prefix "sec_rgy_" is dropped from perl function names
  296.     # subroutines are created for sec_rgy_wildcard_name and
  297.     # sec_rgy_wildcard_sid
  298.     h2xs -n DCE::rgynbase -p sec_rgy_ \
  299.     -s sec_rgy_wildcard_name,sec_rgy_wildcard_sid dce/rgynbase
  300.  
  301.     # Make XS without defines in perl.h, but with function declarations
  302.     # visible from perl.h. Name of the extension is perl1.
  303.     # When scanning perl.h, define -DEXT=extern -DdEXT= -DINIT(x)=
  304.     # Extra backslashes below because the string is passed to shell.
  305.     # Note that a directory with perl header files would
  306.     #  be added automatically to include path.
  307.     h2xs -xAn perl1 -F "-DEXT=extern -DdEXT= -DINIT\(x\)=" perl.h
  308.  
  309.     # Same with function declaration in proto.h as visible from perl.h.
  310.     h2xs -xAn perl2 perl.h,proto.h
  311.  
  312.     # Same but select only functions which match /^av_/
  313.     h2xs -M '^av_' -xAn perl2 perl.h,proto.h
  314.  
  315.     # Same but treat SV* etc as "opaque" types
  316.     h2xs -o '^[S]V \*$' -M '^av_' -xAn perl2 perl.h,proto.h
  317.  
  318. =head2 Extension based on F<.h> and F<.c> files
  319.  
  320. Suppose that you have some C files implementing some functionality,
  321. and the corresponding header files.  How to create an extension which
  322. makes this functionality accessable in Perl?  The example below
  323. assumes that the header files are F<interface_simple.h> and
  324. I<interface_hairy.h>, and you want the perl module be named as
  325. C<Ext::Ension>.  If you need some preprocessor directives and/or
  326. linking with external libraries, see the flags C<-F>, C<-L> and C<-l>
  327. in L<"OPTIONS">.
  328.  
  329. =over
  330.  
  331. =item Find the directory name
  332.  
  333. Start with a dummy run of h2xs:
  334.  
  335.   h2xs -Afn Ext::Ension
  336.  
  337. The only purpose of this step is to create the needed directories, and
  338. let you know the names of these directories.  From the output you can
  339. see that the directory for the extension is F<Ext/Ension>.
  340.  
  341. =item Copy C files
  342.  
  343. Copy your header files and C files to this directory F<Ext/Ension>.
  344.  
  345. =item Create the extension
  346.  
  347. Run h2xs, overwriting older autogenerated files:
  348.  
  349.   h2xs -Oxan Ext::Ension interface_simple.h interface_hairy.h
  350.  
  351. h2xs looks for header files I<after> changing to the extension
  352. directory, so it will find your header files OK.
  353.  
  354. =item Archive and test
  355.  
  356. As usual, run
  357.  
  358.   cd Ext/Ension
  359.   perl Makefile.PL
  360.   make dist
  361.   make
  362.   make test
  363.  
  364. =item Hints
  365.  
  366. It is important to do C<make dist> as early as possible.  This way you
  367. can easily merge(1) your changes to autogenerated files if you decide
  368. to edit your C<.h> files and rerun h2xs.
  369.  
  370. Do not forget to edit the documentation in the generated F<.pm> file.
  371.  
  372. Consider the autogenerated files as skeletons only, you may invent
  373. better interfaces than what h2xs could guess.
  374.  
  375. Consider this section as a guideline only, some other options of h2xs
  376. may better suit your needs.
  377.  
  378. =back
  379.  
  380. =head1 ENVIRONMENT
  381.  
  382. No environment variables are used.
  383.  
  384. =head1 AUTHOR
  385.  
  386. Larry Wall and others
  387.  
  388. =head1 SEE ALSO
  389.  
  390. L<perl>, L<perlxstut>, L<ExtUtils::MakeMaker>, and L<AutoLoader>.
  391.  
  392. =head1 DIAGNOSTICS
  393.  
  394. The usual warnings if it cannot read or write the files involved.
  395.  
  396. =head1 LIMITATIONS of B<-x>
  397.  
  398. F<h2xs> would not distinguish whether an argument to a C function
  399. which is of the form, say, C<int *>, is an input, output, or
  400. input/output parameter.  In particular, argument declarations of the
  401. form
  402.  
  403.     int
  404.     foo(n)
  405.     int *n
  406.  
  407. should be better rewritten as
  408.  
  409.     int
  410.     foo(n)
  411.     int &n
  412.  
  413. if C<n> is an input parameter.
  414.  
  415. Additionally, F<h2xs> has no facilities to intuit that a function
  416.  
  417.    int
  418.    foo(addr,l)
  419.     char *addr
  420.     int   l
  421.  
  422. takes a pair of address and length of data at this address, so it is better
  423. to rewrite this function as
  424.  
  425.     int
  426.     foo(sv)
  427.         SV *addr
  428.     PREINIT:
  429.         STRLEN len;
  430.         char *s;
  431.     CODE:
  432.         s = SvPV(sv,len);
  433.         RETVAL = foo(s, len);
  434.     OUTPUT:
  435.         RETVAL
  436.  
  437. or alternately
  438.  
  439.     static int
  440.     my_foo(SV *sv)
  441.     {
  442.     STRLEN len;
  443.     char *s = SvPV(sv,len);
  444.  
  445.     return foo(s, len);
  446.     }
  447.  
  448.     MODULE = foo    PACKAGE = foo    PREFIX = my_
  449.  
  450.     int
  451.     foo(sv)
  452.     SV *sv
  453.  
  454. See L<perlxs> and L<perlxstut> for additional details.
  455.  
  456. =cut
  457.  
  458. # ' # Grr
  459. use strict;
  460.  
  461.  
  462. my( $H2XS_VERSION ) = ' $Revision: 1.23 $ ' =~ /\$Revision:\s+([^\s]+)/;
  463. my $TEMPLATE_VERSION = '0.01';
  464. my @ARGS = @ARGV;
  465. my $compat_version = $];
  466.  
  467. use Getopt::Long;
  468. use Config;
  469. use Text::Wrap;
  470. $Text::Wrap::huge = 'overflow';
  471. $Text::Wrap::columns = 80;
  472. use ExtUtils::Constant qw (WriteConstants WriteMakefileSnippet autoload);
  473. use File::Compare;
  474. use File::Path;
  475.  
  476. sub usage {
  477.     warn "@_\n" if @_;
  478.     die <<EOFUSAGE;
  479. h2xs [OPTIONS ... ] [headerfile [extra_libraries]]
  480. version: $H2XS_VERSION
  481. OPTIONS:
  482.     -A, --omit-autoload   Omit all autoloading facilities (implies -c).
  483.     -B, --beta-version    Use beta \$VERSION of 0.00_01 (ignored if -v).
  484.     -C, --omit-changes    Omit creating the Changes file, add HISTORY heading
  485.                           to stub POD.
  486.     -F, --cpp-flags       Additional flags for C preprocessor/compile.
  487.     -M, --func-mask       Mask to select C functions/macros
  488.                           (default is select all).
  489.     -O, --overwrite-ok    Allow overwriting of a pre-existing extension directory.
  490.     -P, --omit-pod        Omit the stub POD section.
  491.     -X, --omit-XS         Omit the XS portion (implies both -c and -f).
  492.     -a, --gen-accessors   Generate get/set accessors for struct and union members
  493.                           (used with -x).
  494.     -b, --compat-version  Specify a perl version to be backwards compatibile with.
  495.     -c, --omit-constant   Omit the constant() function and specialised AUTOLOAD
  496.                           from the XS file.
  497.     -d, --debugging       Turn on debugging messages.
  498.     -e, --omit-enums      Omit constants from enums in the constant() function.
  499.                           If a pattern is given, only the matching enums are
  500.                           ignored.
  501.     -f, --force           Force creation of the extension even if the C header
  502.                           does not exist.
  503.     -g, --global          Include code for safely storing static data in the .xs file.
  504.     -h, -?, --help        Display this help message.
  505.     -k, --omit-const-func Omit 'const' attribute on function arguments
  506.                           (used with -x).
  507.     -m, --gen-tied-var    Generate tied variables for access to declared
  508.                           variables.
  509.     -n, --name            Specify a name to use for the extension (recommended).
  510.     -o, --opaque-re       Regular expression for \"opaque\" types.
  511.     -p, --remove-prefix   Specify a prefix which should be removed from the
  512.                           Perl function names.
  513.     -s, --const-subs      Create subroutines for specified macros.
  514.     -t, --default-type    Default type for autoloaded constants (default is IV).
  515.         --use-new-tests   Use Test::More in backward compatible modules.
  516.         --use-old-tests   Use the module Test rather than Test::More.
  517.         --skip-exporter   Do not export symbols.
  518.         --skip-ppport     Do not use portability layer.
  519.         --skip-autoloader Do not use the module C<AutoLoader>.
  520.         --skip-strict     Do not use the pragma C<strict>.
  521.         --skip-warnings   Do not use the pragma C<warnings>.
  522.     -v, --version         Specify a version number for this extension.
  523.     -x, --autogen-xsubs   Autogenerate XSUBs using C::Scan.
  524.  
  525. extra_libraries
  526.          are any libraries that might be needed for loading the
  527.          extension, e.g. -lm would try to link in the math library.
  528. EOFUSAGE
  529. }
  530.  
  531. my ($opt_A,
  532.     $opt_B,
  533.     $opt_C,
  534.     $opt_F,
  535.     $opt_M,
  536.     $opt_O,
  537.     $opt_P,
  538.     $opt_X,
  539.     $opt_a,
  540.     $opt_c,
  541.     $opt_d,
  542.     $opt_e,
  543.     $opt_f,
  544.     $opt_g,
  545.     $opt_h,
  546.     $opt_k,
  547.     $opt_m,
  548.     $opt_n,
  549.     $opt_o,
  550.     $opt_p,
  551.     $opt_s,
  552.     $opt_v,
  553.     $opt_x,
  554.     $opt_b,
  555.     $opt_t,
  556.     $new_test,
  557.     $old_test,
  558.     $skip_exporter,
  559.     $skip_ppport,
  560.     $skip_autoloader,
  561.     $skip_strict,
  562.     $skip_warnings,
  563.    );
  564.  
  565. Getopt::Long::Configure('bundling');
  566. Getopt::Long::Configure('pass_through');
  567.  
  568. my %options = (
  569.                 'omit-autoload|A'    => \$opt_A,
  570.                 'beta-version|B'     => \$opt_B,
  571.                 'omit-changes|C'     => \$opt_C,
  572.                 'cpp-flags|F=s'      => \$opt_F,
  573.                 'func-mask|M=s'      => \$opt_M,
  574.                 'overwrite_ok|O'     => \$opt_O,
  575.                 'omit-pod|P'         => \$opt_P,
  576.                 'omit-XS|X'          => \$opt_X,
  577.                 'gen-accessors|a'    => \$opt_a,
  578.                 'compat-version|b=s' => \$opt_b,
  579.                 'omit-constant|c'    => \$opt_c,
  580.                 'debugging|d'        => \$opt_d,
  581.                 'omit-enums|e:s'     => \$opt_e,
  582.                 'force|f'            => \$opt_f,
  583.                 'global|g'           => \$opt_g,
  584.                 'help|h|?'           => \$opt_h,
  585.                 'omit-const-func|k'  => \$opt_k,
  586.                 'gen-tied-var|m'     => \$opt_m,
  587.                 'name|n=s'           => \$opt_n,
  588.                 'opaque-re|o=s'      => \$opt_o,
  589.                 'remove-prefix|p=s'  => \$opt_p,
  590.                 'const-subs|s=s'     => \$opt_s,
  591.                 'default-type|t=s'   => \$opt_t,
  592.                 'version|v=s'        => \$opt_v,
  593.                 'autogen-xsubs|x'    => \$opt_x,
  594.                 'use-new-tests'      => \$new_test,
  595.                 'use-old-tests'      => \$old_test,
  596.                 'skip-exporter'      => \$skip_exporter,
  597.                 'skip-ppport'        => \$skip_ppport,
  598.                 'skip-autoloader'    => \$skip_autoloader,
  599.                 'skip-warnings'      => \$skip_warnings,
  600.                 'skip-strict'        => \$skip_strict,
  601.               );
  602.  
  603. GetOptions(%options) || usage;
  604.  
  605. usage if $opt_h;
  606.  
  607. if( $opt_b ){
  608.     usage "You cannot use -b and -m at the same time.\n" if ($opt_b && $opt_m);
  609.     $opt_b =~ /^\d+\.\d+\.\d+/ ||
  610.     usage "You must provide the backwards compatibility version in X.Y.Z form. "
  611.           .  "(i.e. 5.5.0)\n";
  612.     my ($maj,$min,$sub) = split(/\./,$opt_b,3);
  613.     if ($maj < 5 || ($maj == 5 && $min < 6)) {
  614.         $compat_version =
  615.         $sub ? sprintf("%d.%03d%02d",$maj,$min,$sub) :
  616.                sprintf("%d.%03d",    $maj,$min);
  617.     } else {
  618.         $compat_version =
  619.         $sub ? sprintf("%d.%03d%03d",$maj,$min,$sub) :
  620.            sprintf("%d.%03d",    $maj,$min);
  621.     }
  622. } else {
  623.     my ($maj,$min,$sub) = $compat_version =~ /(\d+)\.(\d\d\d)(\d*)/;
  624.     $sub ||= 0;
  625.     warn sprintf <<'EOF', $maj,$min,$sub;
  626. Defaulting to backwards compatibility with perl %d.%d.%d
  627. If you intend this module to be compatible with earlier perl versions, please
  628. specify a minimum perl version with the -b option.
  629.  
  630. EOF
  631. }
  632.  
  633. if( $opt_B ){
  634.     $TEMPLATE_VERSION = '0.00_01';
  635. }
  636.  
  637. if( $opt_v ){
  638.     $TEMPLATE_VERSION = $opt_v;
  639.  
  640.     # check if it is numeric
  641.     my $temp_version = $TEMPLATE_VERSION;
  642.     my $beta_version = $temp_version =~ s/(\d)_(\d\d)/$1$2/;
  643.     my $notnum;
  644.     {
  645.         local $SIG{__WARN__} = sub { $notnum = 1 };
  646.         use warnings 'numeric';
  647.         $temp_version = 0+$temp_version;
  648.     }
  649.  
  650.     if ($notnum) {
  651.         my $module = $opt_n || 'Your::Module';
  652.         warn <<"EOF";
  653. You have specified a non-numeric version.  Unless you supply an
  654. appropriate VERSION class method, users may not be able to specify a
  655. minimum required version with C<use $module versionnum>.
  656.  
  657. EOF
  658.     }
  659.     else {
  660.         $opt_B = $beta_version;
  661.     }
  662. }
  663.  
  664. # -A implies -c.
  665. $skip_autoloader = $opt_c = 1 if $opt_A;
  666.  
  667. # -X implies -c and -f
  668. $opt_c = $opt_f = 1 if $opt_X;
  669.  
  670. $opt_t ||= 'IV';
  671.  
  672. my %const_xsub;
  673. %const_xsub = map { $_,1 } split(/,+/, $opt_s) if $opt_s;
  674.  
  675. my $extralibs = '';
  676.  
  677. my @path_h;
  678.  
  679. while (my $arg = shift) {
  680.     if ($arg =~ /^-l/i) {
  681.         $extralibs .= "$arg ";
  682.         next;
  683.     }
  684.     last if $extralibs;
  685.     push(@path_h, $arg);
  686. }
  687.  
  688. usage "Must supply header file or module name\n"
  689.         unless (@path_h or $opt_n);
  690.  
  691. my $fmask;
  692. my $tmask;
  693.  
  694. $fmask = qr{$opt_M} if defined $opt_M;
  695. $tmask = qr{$opt_o} if defined $opt_o;
  696. my $tmask_all = $tmask && $opt_o eq '.';
  697.  
  698. if ($opt_x) {
  699.   eval {require C::Scan; 1}
  700.     or die <<EOD;
  701. C::Scan required if you use -x option.
  702. To install C::Scan, execute
  703.    perl -MCPAN -e "install C::Scan"
  704. EOD
  705.   unless ($tmask_all) {
  706.     $C::Scan::VERSION >= 0.70
  707.       or die <<EOD;
  708. C::Scan v. 0.70 or later required unless you use -o . option.
  709. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  710. To install C::Scan, execute
  711.    perl -MCPAN -e "install C::Scan"
  712. EOD
  713.   }
  714.   if (($opt_m || $opt_a) && $C::Scan::VERSION < 0.73) {
  715.     die <<EOD;
  716. C::Scan v. 0.73 or later required to use -m or -a options.
  717. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  718. To install C::Scan, execute
  719.    perl -MCPAN -e "install C::Scan"
  720. EOD
  721.   }
  722. }
  723. elsif ($opt_o or $opt_F) {
  724.   warn <<EOD if $opt_o;
  725. Option -o does not make sense without -x.
  726. EOD
  727.   warn <<EOD if $opt_F and $opt_X ;
  728. Option -F does not make sense with -X.
  729. EOD
  730. }
  731.  
  732. my @path_h_ini = @path_h;
  733. my ($name, %fullpath, %prefix, %seen_define, %prefixless, %const_names);
  734.  
  735. my $module = $opt_n;
  736.  
  737. if( @path_h ){
  738.     use File::Spec;
  739.     my @paths;
  740.     my $pre_sub_tri_graphs = 1;
  741.     if ($^O eq 'VMS') {  # Consider overrides of default location
  742.       # XXXX This is not equivalent to what the older version did:
  743.       #        it was looking at $hadsys header-file per header-file...
  744.       my($hadsys) = grep s!^sys/!!i , @path_h;
  745.       @paths = qw( Sys$Library VAXC$Include );
  746.       push @paths, ($hadsys ? 'GNU_CC_Include[vms]' : 'GNU_CC_Include[000000]');
  747.       push @paths, qw( DECC$Library_Include DECC$System_Include );
  748.     }
  749.     else {
  750.       @paths = (File::Spec->curdir(), $Config{usrinc},
  751.         (split ' ', $Config{locincpth}), '/usr/include');
  752.     }
  753.     foreach my $path_h (@path_h) {
  754.         $name ||= $path_h;
  755.     $module ||= do {
  756.       $name =~ s/\.h$//;
  757.       if ( $name !~ /::/ ) {
  758.     $name =~ s#^.*/##;
  759.     $name = "\u$name";
  760.       }
  761.       $name;
  762.     };
  763.  
  764.     if( $path_h =~ s#::#/#g && $opt_n ){
  765.     warn "Nesting of headerfile ignored with -n\n";
  766.     }
  767.     $path_h .= ".h" unless $path_h =~ /\.h$/;
  768.     my $fullpath = $path_h;
  769.     $path_h =~ s/,.*$// if $opt_x;
  770.     $fullpath{$path_h} = $fullpath;
  771.  
  772.     # Minor trickery: we can't chdir() before we processed the headers
  773.     # (so know the name of the extension), but the header may be in the
  774.     # extension directory...
  775.     my $tmp_path_h = $path_h;
  776.     my $rel_path_h = $path_h;
  777.     my @dirs = @paths;
  778.     if (not -f $path_h) {
  779.       my $found;
  780.       for my $dir (@paths) {
  781.     $found++, last
  782.       if -f ($path_h = File::Spec->catfile($dir, $tmp_path_h));
  783.       }
  784.       if ($found) {
  785.     $rel_path_h = $path_h;
  786.     $fullpath{$path_h} = $fullpath;
  787.       } else {
  788.     (my $epath = $module) =~ s,::,/,g;
  789.     $epath = File::Spec->catdir('ext', $epath) if -d 'ext';
  790.     $rel_path_h = File::Spec->catfile($epath, $tmp_path_h);
  791.     $path_h = $tmp_path_h;    # Used during -x
  792.     push @dirs, $epath;
  793.       }
  794.     }
  795.  
  796.     if (!$opt_c) {
  797.       die "Can't find $tmp_path_h in @dirs\n"
  798.     if ( ! $opt_f && ! -f "$rel_path_h" );
  799.       # Scan the header file (we should deal with nested header files)
  800.       # Record the names of simple #define constants into const_names
  801.             # Function prototypes are processed below.
  802.       open(CH, "<$rel_path_h") || die "Can't open $rel_path_h: $!\n";
  803.     defines:
  804.       while (<CH>) {
  805.     if ($pre_sub_tri_graphs) {
  806.         # Preprocess all tri-graphs
  807.         # including things stuck in quoted string constants.
  808.         s/\?\?=/#/g;                         # | ??=|  #|
  809.         s/\?\?\!/|/g;                        # | ??!|  ||
  810.         s/\?\?'/^/g;                         # | ??'|  ^|
  811.         s/\?\?\(/[/g;                        # | ??(|  [|
  812.         s/\?\?\)/]/g;                        # | ??)|  ]|
  813.         s/\?\?\-/~/g;                        # | ??-|  ~|
  814.         s/\?\?\//\\/g;                       # | ??/|  \|
  815.         s/\?\?</{/g;                         # | ??<|  {|
  816.         s/\?\?>/}/g;                         # | ??>|  }|
  817.     }
  818.     if (/^[ \t]*#[ \t]*define\s+([\$\w]+)\b(?!\()\s*(?=[^"\s])(.*)/) {
  819.         my $def = $1;
  820.         my $rest = $2;
  821.         $rest =~ s!/\*.*?(\*/|\n)|//.*!!g; # Remove comments
  822.         $rest =~ s/^\s+//;
  823.         $rest =~ s/\s+$//;
  824.         # Cannot do: (-1) and ((LHANDLE)3) are OK:
  825.         #print("Skip non-wordy $def => $rest\n"),
  826.         #  next defines if $rest =~ /[^\w\$]/;
  827.         if ($rest =~ /"/) {
  828.           print("Skip stringy $def => $rest\n") if $opt_d;
  829.           next defines;
  830.         }
  831.         print "Matched $_ ($def)\n" if $opt_d;
  832.         $seen_define{$def} = $rest;
  833.         $_ = $def;
  834.         next if /^_.*_h_*$/i; # special case, but for what?
  835.         if (defined $opt_p) {
  836.           if (!/^$opt_p(\d)/) {
  837.         ++$prefix{$_} if s/^$opt_p//;
  838.           }
  839.           else {
  840.         warn "can't remove $opt_p prefix from '$_'!\n";
  841.           }
  842.         }
  843.         $prefixless{$def} = $_;
  844.         if (!$fmask or /$fmask/) {
  845.         print "... Passes mask of -M.\n" if $opt_d and $fmask;
  846.         $const_names{$_}++;
  847.         }
  848.       }
  849.       }
  850.       if (defined $opt_e and !$opt_e) {
  851.         close(CH);
  852.       }
  853.       else {
  854.     # Work from miniperl too - on "normal" systems
  855.         my $SEEK_SET = eval 'use Fcntl qw/SEEK_SET/; SEEK_SET' or 0;
  856.         seek CH, 0, $SEEK_SET;
  857.         my $src = do { local $/; <CH> };
  858.         close CH;
  859.         no warnings 'uninitialized';
  860.  
  861.         # Remove C and C++ comments
  862.         $src =~ s#/\*[^*]*\*+([^/*][^*]*\*+)*/|("(\\.|[^"\\])*"|'(\\.|[^'\\])*'|.[^/"'\\]*)#$2#gs;
  863.  
  864.         while ($src =~ /(\benum\s*([\w_]*)\s*\{\s([\s\w=,]+)\})/gsc) {
  865.             my ($enum_name, $enum_body) =
  866.                 $1 =~ /enum\s*([\w_]*)\s*\{\s([\s\w=,]+)\}/gs;
  867.             # skip enums matching $opt_e
  868.             next if $opt_e && $enum_name =~ /$opt_e/;
  869.             my $val = 0;
  870.             for my $item (split /,/, $enum_body) {
  871.                 my ($key, $declared_val) = $item =~ /(\w+)\s*(?:=\s*(.*))?/;
  872.                 $val = defined($declared_val) && length($declared_val) ? $declared_val : 1 + $val;
  873.                 $seen_define{$key} = $val;
  874.                 $const_names{$key}++;
  875.             }
  876.         } # while (...)
  877.       } # if (!defined $opt_e or $opt_e)
  878.     }
  879.     }
  880. }
  881.  
  882. # Save current directory so that C::Scan can use it
  883. my $cwd = File::Spec->rel2abs( File::Spec->curdir );
  884.  
  885. # As Ilya suggested, use a name that contains - and then it can't clash with
  886. # the names of any packages. A directory 'fallback' will clash with any
  887. # new pragmata down the fallback:: tree, but that seems unlikely.
  888. my $constscfname = 'const-c.inc';
  889. my $constsxsfname = 'const-xs.inc';
  890. my $fallbackdirname = 'fallback';
  891.  
  892. my $ext = chdir 'ext' ? 'ext/' : '';
  893.  
  894. my @modparts  = split(/::/,$module);
  895. my $modpname  = join('-', @modparts);
  896. my $modfname  = pop @modparts;
  897. my $modpmdir  = join '/', 'lib', @modparts;
  898. my $modpmname = join '/', $modpmdir, $modfname.'.pm';
  899.  
  900. if ($opt_O) {
  901.     warn "Overwriting existing $ext$modpname!!!\n" if -e $modpname;
  902. }
  903. else {
  904.     die "Won't overwrite existing $ext$modpname\n" if -e $modpname;
  905. }
  906. -d "$modpname"   || mkpath([$modpname], 0, 0775);
  907. chdir($modpname) || die "Can't chdir $ext$modpname: $!\n";
  908.  
  909. my %types_seen;
  910. my %std_types;
  911. my $fdecls = [];
  912. my $fdecls_parsed = [];
  913. my $typedef_rex;
  914. my %typedefs_pre;
  915. my %known_fnames;
  916. my %structs;
  917.  
  918. my @fnames;
  919. my @fnames_no_prefix;
  920. my %vdecl_hash;
  921. my @vdecls;
  922.  
  923. if( ! $opt_X ){  # use XS, unless it was disabled
  924.   unless ($skip_ppport) {
  925.     require Devel::PPPort;
  926.     warn "Writing $ext$modpname/ppport.h\n";
  927.     Devel::PPPort::WriteFile('ppport.h')
  928.         || die "Can't create $ext$modpname/ppport.h: $!\n";
  929.   }
  930.   open(XS, ">$modfname.xs") || die "Can't create $ext$modpname/$modfname.xs: $!\n";
  931.   if ($opt_x) {
  932.     warn "Scanning typemaps...\n";
  933.     get_typemap();
  934.     my @td;
  935.     my @good_td;
  936.     my $addflags = $opt_F || '';
  937.  
  938.     foreach my $filename (@path_h) {
  939.       my $c;
  940.       my $filter;
  941.  
  942.       if ($fullpath{$filename} =~ /,/) {
  943.     $filename = $`;
  944.     $filter = $';
  945.       }
  946.       warn "Scanning $filename for functions...\n";
  947.       my @styles = $Config{gccversion} ? qw(C++ C9X GNU) : qw(C++ C9X);
  948.       $c = new C::Scan 'filename' => $filename, 'filename_filter' => $filter,
  949.     'add_cppflags' => $addflags, 'c_styles' => \@styles;
  950.       $c->set('includeDirs' => ["$Config::Config{archlib}/CORE", $cwd]);
  951.  
  952.       $c->get('keywords')->{'__restrict'} = 1;
  953.  
  954.       push @$fdecls_parsed, @{ $c->get('parsed_fdecls') };
  955.       push(@$fdecls, @{$c->get('fdecls')});
  956.  
  957.       push @td, @{$c->get('typedefs_maybe')};
  958.       if ($opt_a) {
  959.     my $structs = $c->get('typedef_structs');
  960.     @structs{keys %$structs} = values %$structs;
  961.       }
  962.  
  963.       if ($opt_m) {
  964.     %vdecl_hash = %{ $c->get('vdecl_hash') };
  965.     @vdecls = sort keys %vdecl_hash;
  966.     for (local $_ = 0; $_ < @vdecls; ++$_) {
  967.       my $var = $vdecls[$_];
  968.       my($type, $post) = @{ $vdecl_hash{$var} };
  969.       if (defined $post) {
  970.         warn "Can't handle variable '$type $var $post', skipping.\n";
  971.         splice @vdecls, $_, 1;
  972.         redo;
  973.       }
  974.       $type = normalize_type($type);
  975.       $vdecl_hash{$var} = $type;
  976.     }
  977.       }
  978.  
  979.       unless ($tmask_all) {
  980.     warn "Scanning $filename for typedefs...\n";
  981.     my $td = $c->get('typedef_hash');
  982.     # eval {require 'dumpvar.pl'; ::dumpValue($td)} or warn $@ if $opt_d;
  983.     my @f_good_td = grep $td->{$_}[1] eq '', keys %$td;
  984.     push @good_td, @f_good_td;
  985.     @typedefs_pre{@f_good_td}  = map $_->[0], @$td{@f_good_td};
  986.       }
  987.     }
  988.     { local $" = '|';
  989.       $typedef_rex = qr(\b(?<!struct )(?:@good_td)\b) if @good_td;
  990.     }
  991.     %known_fnames = map @$_[1,3], @$fdecls_parsed; # [1,3] is NAME, FULLTEXT
  992.     if ($fmask) {
  993.       my @good;
  994.       for my $i (0..$#$fdecls_parsed) {
  995.     next unless $fdecls_parsed->[$i][1] =~ /$fmask/; # [1] is NAME
  996.     push @good, $i;
  997.     print "... Function $fdecls_parsed->[$i][1] passes -M mask.\n"
  998.       if $opt_d;
  999.       }
  1000.       $fdecls = [@$fdecls[@good]];
  1001.       $fdecls_parsed = [@$fdecls_parsed[@good]];
  1002.     }
  1003.     @fnames = sort map $_->[1], @$fdecls_parsed; # 1 is NAME
  1004.     # Sort declarations:
  1005.     {
  1006.       my %h = map( ($_->[1], $_), @$fdecls_parsed);
  1007.       $fdecls_parsed = [ @h{@fnames} ];
  1008.     }
  1009.     @fnames_no_prefix = @fnames;
  1010.     @fnames_no_prefix
  1011.       = sort map { ++$prefix{$_} if s/^$opt_p(?!\d)//; $_ } @fnames_no_prefix
  1012.          if defined $opt_p;
  1013.     # Remove macros which expand to typedefs
  1014.     print "Typedefs are @td.\n" if $opt_d;
  1015.     my %td = map {($_, $_)} @td;
  1016.     # Add some other possible but meaningless values for macros
  1017.     for my $k (qw(char double float int long short unsigned signed void)) {
  1018.       $td{"$_$k"} = "$_$k" for ('', 'signed ', 'unsigned ');
  1019.     }
  1020.     # eval {require 'dumpvar.pl'; ::dumpValue( [\@td, \%td] ); 1} or warn $@;
  1021.     my $n = 0;
  1022.     my %bad_macs;
  1023.     while (keys %td > $n) {
  1024.       $n = keys %td;
  1025.       my ($k, $v);
  1026.       while (($k, $v) = each %seen_define) {
  1027.     # print("found '$k'=>'$v'\n"),
  1028.     $bad_macs{$k} = $td{$k} = $td{$v} if exists $td{$v};
  1029.       }
  1030.     }
  1031.     # Now %bad_macs contains names of bad macros
  1032.     for my $k (keys %bad_macs) {
  1033.       delete $const_names{$prefixless{$k}};
  1034.       print "Ignoring macro $k which expands to a typedef name '$bad_macs{$k}'\n" if $opt_d;
  1035.     }
  1036.   }
  1037. }
  1038. my @const_names = sort keys %const_names;
  1039.  
  1040. -d $modpmdir || mkpath([$modpmdir], 0, 0775);
  1041. open(PM, ">$modpmname") || die "Can't create $ext$modpname/$modpmname: $!\n";
  1042.  
  1043. $" = "\n\t";
  1044. warn "Writing $ext$modpname/$modpmname\n";
  1045.  
  1046. print PM <<"END";
  1047. package $module;
  1048.  
  1049. use $compat_version;
  1050. END
  1051.  
  1052. print PM <<"END" unless $skip_strict;
  1053. use strict;
  1054. END
  1055.  
  1056. print PM "use warnings;\n" unless $skip_warnings or $compat_version < 5.006;
  1057.  
  1058. unless( $opt_X || $opt_c || $opt_A ){
  1059.     # we'll have an AUTOLOAD(), and it will have $AUTOLOAD and
  1060.     # will want Carp.
  1061.     print PM <<'END';
  1062. use Carp;
  1063. END
  1064. }
  1065.  
  1066. print PM <<'END' unless $skip_exporter;
  1067.  
  1068. require Exporter;
  1069. END
  1070.  
  1071. my $use_Dyna = (not $opt_X and $compat_version < 5.006);
  1072. print PM <<"END" if $use_Dyna;  # use DynaLoader, unless XS was disabled
  1073. require DynaLoader;
  1074. END
  1075.  
  1076.  
  1077. # Are we using AutoLoader or not?
  1078. unless ($skip_autoloader) { # no autoloader whatsoever.
  1079.     unless ($opt_c) { # we're doing the AUTOLOAD
  1080.         print PM "use AutoLoader;\n";
  1081.     }
  1082.     else {
  1083.         print PM "use AutoLoader qw(AUTOLOAD);\n"
  1084.     }
  1085. }
  1086.  
  1087. if ( $compat_version < 5.006 ) {
  1088.     my $vars = '$VERSION @ISA';
  1089.     $vars .= ' @EXPORT @EXPORT_OK %EXPORT_TAGS' unless $skip_exporter;
  1090.     $vars .= ' $AUTOLOAD' unless $opt_X || $opt_c || $opt_A;
  1091.     $vars .= ' $XS_VERSION' if $opt_B && !$opt_X;
  1092.     print PM "use vars qw($vars);";
  1093. }
  1094.  
  1095. # Determine @ISA.
  1096. my @modISA;
  1097. push @modISA, 'Exporter'    unless $skip_exporter;
  1098. push @modISA, 'DynaLoader'     if $use_Dyna;  # no XS
  1099. my $myISA = "our \@ISA = qw(@modISA);";
  1100. $myISA =~ s/^our // if $compat_version < 5.006;
  1101.  
  1102. print PM "\n$myISA\n\n";
  1103.  
  1104. my @exported_names = (@const_names, @fnames_no_prefix, map '$'.$_, @vdecls);
  1105.  
  1106. my $tmp='';
  1107. $tmp .= <<"END" unless $skip_exporter;
  1108. # Items to export into callers namespace by default. Note: do not export
  1109. # names by default without a very good reason. Use EXPORT_OK instead.
  1110. # Do not simply export all your public functions/methods/constants.
  1111.  
  1112. # This allows declaration    use $module ':all';
  1113. # If you do not need this, moving things directly into \@EXPORT or \@EXPORT_OK
  1114. # will save memory.
  1115. our %EXPORT_TAGS = ( 'all' => [ qw(
  1116.     @exported_names
  1117. ) ] );
  1118.  
  1119. our \@EXPORT_OK = ( \@{ \$EXPORT_TAGS{'all'} } );
  1120.  
  1121. our \@EXPORT = qw(
  1122.     @const_names
  1123. );
  1124.  
  1125. END
  1126.  
  1127. $tmp .= "our \$VERSION = '$TEMPLATE_VERSION';\n";
  1128. if ($opt_B) {
  1129.     $tmp .= "our \$XS_VERSION = \$VERSION;\n" unless $opt_X;
  1130.     $tmp .= "\$VERSION = eval \$VERSION;  # see L<perlmodstyle>\n";
  1131. }
  1132. $tmp .= "\n";
  1133.  
  1134. $tmp =~ s/^our //mg if $compat_version < 5.006;
  1135. print PM $tmp;
  1136.  
  1137. if (@vdecls) {
  1138.     printf PM "our(@{[ join ', ', map '$'.$_, @vdecls ]});\n\n";
  1139. }
  1140.  
  1141.  
  1142. print PM autoload ($module, $compat_version) unless $opt_c or $opt_X;
  1143.  
  1144. if( ! $opt_X ){ # print bootstrap, unless XS is disabled
  1145.   if ($use_Dyna) {
  1146.     $tmp = <<"END";
  1147. bootstrap $module \$VERSION;
  1148. END
  1149.   } else {
  1150.     $tmp = <<"END";
  1151. require XSLoader;
  1152. XSLoader::load('$module', \$VERSION);
  1153. END
  1154.   }
  1155.   $tmp =~ s:\$VERSION:\$XS_VERSION:g if $opt_B;
  1156.   print PM $tmp;
  1157. }
  1158.  
  1159. # tying the variables can happen only after bootstrap
  1160. if (@vdecls) {
  1161.     printf PM <<END;
  1162. {
  1163. @{[ join "\n", map "    _tievar_$_(\$$_);", @vdecls ]}
  1164. }
  1165.  
  1166. END
  1167. }
  1168.  
  1169. my $after;
  1170. if( $opt_P ){ # if POD is disabled
  1171.     $after = '__END__';
  1172. }
  1173. else {
  1174.     $after = '=cut';
  1175. }
  1176.  
  1177. print PM <<"END";
  1178.  
  1179. # Preloaded methods go here.
  1180. END
  1181.  
  1182. print PM <<"END" unless $opt_A;
  1183.  
  1184. # Autoload methods go after $after, and are processed by the autosplit program.
  1185. END
  1186.  
  1187. print PM <<"END";
  1188.  
  1189. 1;
  1190. __END__
  1191. END
  1192.  
  1193. my ($email,$author,$licence);
  1194.  
  1195. eval {
  1196.        my $username;
  1197.        ($username,$author) = (getpwuid($>))[0,6];
  1198.        if (defined $username && defined $author) {
  1199.        $author =~ s/,.*$//; # in case of sub fields
  1200.        my $domain = $Config{'mydomain'};
  1201.        $domain =~ s/^\.//;
  1202.        $email = "$username\@$domain";
  1203.        }
  1204.      };
  1205.  
  1206. $author ||= "A. U. Thor";
  1207. $email  ||= 'a.u.thor@a.galaxy.far.far.away';
  1208.  
  1209. $licence = sprintf << "DEFAULT", $^V;
  1210. Copyright (C) ${\(1900 + (localtime) [5])} by $author
  1211.  
  1212. This library is free software; you can redistribute it and/or modify
  1213. it under the same terms as Perl itself, either Perl version %vd or,
  1214. at your option, any later version of Perl 5 you may have available.
  1215. DEFAULT
  1216.  
  1217. my $revhist = '';
  1218. $revhist = <<EOT if $opt_C;
  1219. #
  1220. #=head1 HISTORY
  1221. #
  1222. #=over 8
  1223. #
  1224. #=item $TEMPLATE_VERSION
  1225. #
  1226. #Original version; created by h2xs $H2XS_VERSION with options
  1227. #
  1228. #  @ARGS
  1229. #
  1230. #=back
  1231. #
  1232. EOT
  1233.  
  1234. my $exp_doc = $skip_exporter ? '' : <<EOD;
  1235. #
  1236. #=head2 EXPORT
  1237. #
  1238. #None by default.
  1239. #
  1240. EOD
  1241.  
  1242. if (@const_names and not $opt_P) {
  1243.   $exp_doc .= <<EOD unless $skip_exporter;
  1244. #=head2 Exportable constants
  1245. #
  1246. #  @{[join "\n  ", @const_names]}
  1247. #
  1248. EOD
  1249. }
  1250.  
  1251. if (defined $fdecls and @$fdecls and not $opt_P) {
  1252.   $exp_doc .= <<EOD unless $skip_exporter;
  1253. #=head2 Exportable functions
  1254. #
  1255. EOD
  1256.  
  1257. #  $exp_doc .= <<EOD if $opt_p;
  1258. #When accessing these functions from Perl, prefix C<$opt_p> should be removed.
  1259. #
  1260. #EOD
  1261.   $exp_doc .= <<EOD unless $skip_exporter;
  1262. #  @{[join "\n  ", @known_fnames{@fnames}]}
  1263. #
  1264. EOD
  1265. }
  1266.  
  1267. my $meth_doc = '';
  1268.  
  1269. if ($opt_x && $opt_a) {
  1270.   my($name, $struct);
  1271.   $meth_doc .= accessor_docs($name, $struct)
  1272.     while ($name, $struct) = each %structs;
  1273. }
  1274.  
  1275. # Prefix the default licence with hash symbols.
  1276. # Is this just cargo cult - it seems that the first thing that happens to this
  1277. # block is that all the hashes are then s///g out.
  1278. my $licence_hash = $licence;
  1279. $licence_hash =~ s/^/#/gm;
  1280.  
  1281. my $pod;
  1282. $pod = <<"END" unless $opt_P;
  1283. ## Below is stub documentation for your module. You'd better edit it!
  1284. #
  1285. #=head1 NAME
  1286. #
  1287. #$module - Perl extension for blah blah blah
  1288. #
  1289. #=head1 SYNOPSIS
  1290. #
  1291. #  use $module;
  1292. #  blah blah blah
  1293. #
  1294. #=head1 DESCRIPTION
  1295. #
  1296. #Stub documentation for $module, created by h2xs. It looks like the
  1297. #author of the extension was negligent enough to leave the stub
  1298. #unedited.
  1299. #
  1300. #Blah blah blah.
  1301. $exp_doc$meth_doc$revhist
  1302. #
  1303. #=head1 SEE ALSO
  1304. #
  1305. #Mention other useful documentation such as the documentation of
  1306. #related modules or operating system documentation (such as man pages
  1307. #in UNIX), or any relevant external documentation such as RFCs or
  1308. #standards.
  1309. #
  1310. #If you have a mailing list set up for your module, mention it here.
  1311. #
  1312. #If you have a web site set up for your module, mention it here.
  1313. #
  1314. #=head1 AUTHOR
  1315. #
  1316. #$author, E<lt>${email}E<gt>
  1317. #
  1318. #=head1 COPYRIGHT AND LICENSE
  1319. #
  1320. $licence_hash
  1321. #
  1322. #=cut
  1323. END
  1324.  
  1325. $pod =~ s/^\#//gm unless $opt_P;
  1326. print PM $pod unless $opt_P;
  1327.  
  1328. close PM;
  1329.  
  1330.  
  1331. if( ! $opt_X ){ # print XS, unless it is disabled
  1332. warn "Writing $ext$modpname/$modfname.xs\n";
  1333.  
  1334. print XS <<"END";
  1335. #include "EXTERN.h"
  1336. #include "perl.h"
  1337. #include "XSUB.h"
  1338.  
  1339. END
  1340.  
  1341. print XS <<"END" unless $skip_ppport;
  1342. #include "ppport.h"
  1343.  
  1344. END
  1345.  
  1346. if( @path_h ){
  1347.     foreach my $path_h (@path_h_ini) {
  1348.     my($h) = $path_h;
  1349.     $h =~ s#^/usr/include/##;
  1350.     if ($^O eq 'VMS') { $h =~ s#.*vms\]#sys/# or $h =~ s#.*[:>\]]##; }
  1351.         print XS qq{#include <$h>\n};
  1352.     }
  1353.     print XS "\n";
  1354. }
  1355.  
  1356. print XS <<"END" if $opt_g;
  1357.  
  1358. /* Global Data */
  1359.  
  1360. #define MY_CXT_KEY "${module}::_guts" XS_VERSION
  1361.  
  1362. typedef struct {
  1363.     /* Put Global Data in here */
  1364.     int dummy;        /* you can access this elsewhere as MY_CXT.dummy */
  1365. } my_cxt_t;
  1366.  
  1367. START_MY_CXT
  1368.  
  1369. END
  1370.  
  1371. my %pointer_typedefs;
  1372. my %struct_typedefs;
  1373.  
  1374. sub td_is_pointer {
  1375.   my $type = shift;
  1376.   my $out = $pointer_typedefs{$type};
  1377.   return $out if defined $out;
  1378.   my $otype = $type;
  1379.   $out = ($type =~ /\*$/);
  1380.   # This converts only the guys which do not have trailing part in the typedef
  1381.   if (not $out
  1382.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1383.     $type = normalize_type($type);
  1384.     print "Is-Pointer: Type mutation via typedefs: $otype ==> $type\n"
  1385.       if $opt_d;
  1386.     $out = td_is_pointer($type);
  1387.   }
  1388.   return ($pointer_typedefs{$otype} = $out);
  1389. }
  1390.  
  1391. sub td_is_struct {
  1392.   my $type = shift;
  1393.   my $out = $struct_typedefs{$type};
  1394.   return $out if defined $out;
  1395.   my $otype = $type;
  1396.   $out = ($type =~ /^(struct|union)\b/) && !td_is_pointer($type);
  1397.   # This converts only the guys which do not have trailing part in the typedef
  1398.   if (not $out
  1399.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1400.     $type = normalize_type($type);
  1401.     print "Is-Struct: Type mutation via typedefs: $otype ==> $type\n"
  1402.       if $opt_d;
  1403.     $out = td_is_struct($type);
  1404.   }
  1405.   return ($struct_typedefs{$otype} = $out);
  1406. }
  1407.  
  1408. print_tievar_subs(\*XS, $_, $vdecl_hash{$_}) for @vdecls;
  1409.  
  1410. if( ! $opt_c ) {
  1411.   # We write the "sample" files used when this module is built by perl without
  1412.   # ExtUtils::Constant.
  1413.   # h2xs will later check that these are the same as those generated by the
  1414.   # code embedded into Makefile.PL
  1415.   unless (-d $fallbackdirname) {
  1416.     mkdir "$fallbackdirname" or die "Cannot mkdir $fallbackdirname: $!\n";
  1417.   }
  1418.   warn "Writing $ext$modpname/$fallbackdirname/$constscfname\n";
  1419.   warn "Writing $ext$modpname/$fallbackdirname/$constsxsfname\n";
  1420.   my $cfallback = File::Spec->catfile($fallbackdirname, $constscfname);
  1421.   my $xsfallback = File::Spec->catfile($fallbackdirname, $constsxsfname);
  1422.   WriteConstants ( C_FILE =>       $cfallback,
  1423.                    XS_FILE =>      $xsfallback,
  1424.                    DEFAULT_TYPE => $opt_t,
  1425.                    NAME =>         $module,
  1426.                    NAMES =>        \@const_names,
  1427.                  );
  1428.   print XS "#include \"$constscfname\"\n";
  1429. }
  1430.  
  1431.  
  1432. my $prefix = defined $opt_p ? "PREFIX = $opt_p" : '';
  1433.  
  1434. # Now switch from C to XS by issuing the first MODULE declaration:
  1435. print XS <<"END";
  1436.  
  1437. MODULE = $module        PACKAGE = $module        $prefix
  1438.  
  1439. END
  1440.  
  1441. # If a constant() function was #included then output a corresponding
  1442. # XS declaration:
  1443. print XS "INCLUDE: $constsxsfname\n" unless $opt_c;
  1444.  
  1445. print XS <<"END" if $opt_g;
  1446.  
  1447. BOOT:
  1448. {
  1449.     MY_CXT_INIT;
  1450.     /* If any of the fields in the my_cxt_t struct need
  1451.        to be initialised, do it here.
  1452.      */
  1453. }
  1454.  
  1455. END
  1456.  
  1457. foreach (sort keys %const_xsub) {
  1458.     print XS <<"END";
  1459. char *
  1460. $_()
  1461.  
  1462.     CODE:
  1463. #ifdef $_
  1464.     RETVAL = $_;
  1465. #else
  1466.     croak("Your vendor has not defined the $module macro $_");
  1467. #endif
  1468.  
  1469.     OUTPUT:
  1470.     RETVAL
  1471.  
  1472. END
  1473. }
  1474.  
  1475. my %seen_decl;
  1476. my %typemap;
  1477.  
  1478. sub print_decl {
  1479.   my $fh = shift;
  1480.   my $decl = shift;
  1481.   my ($type, $name, $args) = @$decl;
  1482.   return if $seen_decl{$name}++; # Need to do the same for docs as well?
  1483.  
  1484.   my @argnames = map {$_->[1]} @$args;
  1485.   my @argtypes = map { normalize_type( $_->[0], 1 ) } @$args;
  1486.   if ($opt_k) {
  1487.     s/^\s*const\b\s*// for @argtypes;
  1488.   }
  1489.   my @argarrays = map { $_->[4] || '' } @$args;
  1490.   my $numargs = @$args;
  1491.   if ($numargs and $argtypes[-1] eq '...') {
  1492.     $numargs--;
  1493.     $argnames[-1] = '...';
  1494.   }
  1495.   local $" = ', ';
  1496.   $type = normalize_type($type, 1);
  1497.  
  1498.   print $fh <<"EOP";
  1499.  
  1500. $type
  1501. $name(@argnames)
  1502. EOP
  1503.  
  1504.   for my $arg (0 .. $numargs - 1) {
  1505.     print $fh <<"EOP";
  1506.     $argtypes[$arg]    $argnames[$arg]$argarrays[$arg]
  1507. EOP
  1508.   }
  1509. }
  1510.  
  1511. sub print_tievar_subs {
  1512.   my($fh, $name, $type) = @_;
  1513.   print $fh <<END;
  1514. I32
  1515. _get_$name(IV index, SV *sv) {
  1516.     dSP;
  1517.     PUSHMARK(SP);
  1518.     XPUSHs(sv);
  1519.     PUTBACK;
  1520.     (void)call_pv("$module\::_get_$name", G_DISCARD);
  1521.     return (I32)0;
  1522. }
  1523.  
  1524. I32
  1525. _set_$name(IV index, SV *sv) {
  1526.     dSP;
  1527.     PUSHMARK(SP);
  1528.     XPUSHs(sv);
  1529.     PUTBACK;
  1530.     (void)call_pv("$module\::_set_$name", G_DISCARD);
  1531.     return (I32)0;
  1532. }
  1533.  
  1534. END
  1535. }
  1536.  
  1537. sub print_tievar_xsubs {
  1538.   my($fh, $name, $type) = @_;
  1539.   print $fh <<END;
  1540. void
  1541. _tievar_$name(sv)
  1542.     SV* sv
  1543.     PREINIT:
  1544.     struct ufuncs uf;
  1545.     CODE:
  1546.     uf.uf_val = &_get_$name;
  1547.     uf.uf_set = &_set_$name;
  1548.     uf.uf_index = (IV)&_get_$name;
  1549.     sv_magic(sv, 0, 'U', (char*)&uf, sizeof(uf));
  1550.  
  1551. void
  1552. _get_$name(THIS)
  1553.     $type THIS = NO_INIT
  1554.     CODE:
  1555.     THIS = $name;
  1556.     OUTPUT:
  1557.     SETMAGIC: DISABLE
  1558.     THIS
  1559.  
  1560. void
  1561. _set_$name(THIS)
  1562.     $type THIS
  1563.     CODE:
  1564.     $name = THIS;
  1565.  
  1566. END
  1567. }
  1568.  
  1569. sub print_accessors {
  1570.   my($fh, $name, $struct) = @_;
  1571.   return unless defined $struct && $name !~ /\s|_ANON/;
  1572.   $name = normalize_type($name);
  1573.   my $ptrname = normalize_type("$name *");
  1574.   print $fh <<"EOF";
  1575.  
  1576. MODULE = $module        PACKAGE = ${name}        $prefix
  1577.  
  1578. $name *
  1579. _to_ptr(THIS)
  1580.     $name THIS = NO_INIT
  1581.     PROTOTYPE: \$
  1582.     CODE:
  1583.     if (sv_derived_from(ST(0), "$name")) {
  1584.         STRLEN len;
  1585.         char *s = SvPV((SV*)SvRV(ST(0)), len);
  1586.         if (len != sizeof(THIS))
  1587.         croak("Size \%d of packed data != expected \%d",
  1588.             len, sizeof(THIS));
  1589.         RETVAL = ($name *)s;
  1590.     }
  1591.     else
  1592.         croak("THIS is not of type $name");
  1593.     OUTPUT:
  1594.     RETVAL
  1595.  
  1596. $name
  1597. new(CLASS)
  1598.     char *CLASS = NO_INIT
  1599.     PROTOTYPE: \$
  1600.     CODE:
  1601.     Zero((void*)&RETVAL, sizeof(RETVAL), char);
  1602.     OUTPUT:
  1603.     RETVAL
  1604.  
  1605. MODULE = $module        PACKAGE = ${name}Ptr        $prefix
  1606.  
  1607. EOF
  1608.   my @items = @$struct;
  1609.   while (@items) {
  1610.     my $item = shift @items;
  1611.     if ($item->[0] =~ /_ANON/) {
  1612.       if (defined $item->[2]) {
  1613.     push @items, map [
  1614.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1615.     ], @{ $structs{$item->[0]} };
  1616.       } else {
  1617.     push @items, @{ $structs{$item->[0]} };
  1618.       }
  1619.     } else {
  1620.       my $type = normalize_type($item->[0]);
  1621.       my $ttype = $structs{$type} ? normalize_type("$type *") : $type;
  1622.       print $fh <<"EOF";
  1623. $ttype
  1624. $item->[2](THIS, __value = NO_INIT)
  1625.     $ptrname THIS
  1626.     $type __value
  1627.     PROTOTYPE: \$;\$
  1628.     CODE:
  1629.     if (items > 1)
  1630.         THIS->$item->[-1] = __value;
  1631.     RETVAL = @{[
  1632.         $type eq $ttype ? "THIS->$item->[-1]" : "&(THIS->$item->[-1])"
  1633.     ]};
  1634.     OUTPUT:
  1635.     RETVAL
  1636.  
  1637. EOF
  1638.     }
  1639.   }
  1640. }
  1641.  
  1642. sub accessor_docs {
  1643.   my($name, $struct) = @_;
  1644.   return unless defined $struct && $name !~ /\s|_ANON/;
  1645.   $name = normalize_type($name);
  1646.   my $ptrname = $name . 'Ptr';
  1647.   my @items = @$struct;
  1648.   my @list;
  1649.   while (@items) {
  1650.     my $item = shift @items;
  1651.     if ($item->[0] =~ /_ANON/) {
  1652.       if (defined $item->[2]) {
  1653.     push @items, map [
  1654.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1655.     ], @{ $structs{$item->[0]} };
  1656.       } else {
  1657.     push @items, @{ $structs{$item->[0]} };
  1658.       }
  1659.     } else {
  1660.       push @list, $item->[2];
  1661.     }
  1662.   }
  1663.   my $methods = (join '(...)>, C<', @list) . '(...)';
  1664.  
  1665.   my $pod = <<"EOF";
  1666. #
  1667. #=head2 Object and class methods for C<$name>/C<$ptrname>
  1668. #
  1669. #The principal Perl representation of a C object of type C<$name> is an
  1670. #object of class C<$ptrname> which is a reference to an integer
  1671. #representation of a C pointer.  To create such an object, one may use
  1672. #a combination
  1673. #
  1674. #  my \$buffer = $name->new();
  1675. #  my \$obj = \$buffer->_to_ptr();
  1676. #
  1677. #This exersizes the following two methods, and an additional class
  1678. #C<$name>, the internal representation of which is a reference to a
  1679. #packed string with the C structure.  Keep in mind that \$buffer should
  1680. #better survive longer than \$obj.
  1681. #
  1682. #=over
  1683. #
  1684. #=item C<\$object_of_type_$name-E<gt>_to_ptr()>
  1685. #
  1686. #Converts an object of type C<$name> to an object of type C<$ptrname>.
  1687. #
  1688. #=item C<$name-E<gt>new()>
  1689. #
  1690. #Creates an empty object of type C<$name>.  The corresponding packed
  1691. #string is zeroed out.
  1692. #
  1693. #=item C<$methods>
  1694. #
  1695. #return the current value of the corresponding element if called
  1696. #without additional arguments.  Set the element to the supplied value
  1697. #(and return the new value) if called with an additional argument.
  1698. #
  1699. #Applicable to objects of type C<$ptrname>.
  1700. #
  1701. #=back
  1702. #
  1703. EOF
  1704.   $pod =~ s/^\#//gm;
  1705.   return $pod;
  1706. }
  1707.  
  1708. # Should be called before any actual call to normalize_type().
  1709. sub get_typemap {
  1710.   # We do not want to read ./typemap by obvios reasons.
  1711.   my @tm =  qw(../../../typemap ../../typemap ../typemap);
  1712.   my $stdtypemap =  "$Config::Config{privlib}/ExtUtils/typemap";
  1713.   unshift @tm, $stdtypemap;
  1714.   my $proto_re = "[" . quotemeta('\$%&*@;') . "]" ;
  1715.  
  1716.   # Start with useful default values
  1717.   $typemap{float} = 'T_NV';
  1718.  
  1719.   foreach my $typemap (@tm) {
  1720.     next unless -e $typemap ;
  1721.     # skip directories, binary files etc.
  1722.     warn " Scanning $typemap\n";
  1723.     warn("Warning: ignoring non-text typemap file '$typemap'\n"), next
  1724.       unless -T $typemap ;
  1725.     open(TYPEMAP, $typemap)
  1726.       or warn ("Warning: could not open typemap file '$typemap': $!\n"), next;
  1727.     my $mode = 'Typemap';
  1728.     while (<TYPEMAP>) {
  1729.       next if /^\s*\#/;
  1730.       if (/^INPUT\s*$/)   { $mode = 'Input'; next; }
  1731.       elsif (/^OUTPUT\s*$/)  { $mode = 'Output'; next; }
  1732.       elsif (/^TYPEMAP\s*$/) { $mode = 'Typemap'; next; }
  1733.       elsif ($mode eq 'Typemap') {
  1734.     next if /^\s*($|\#)/ ;
  1735.     my ($type, $image);
  1736.     if ( ($type, $image) =
  1737.          /^\s*(.*?\S)\s+(\S+)\s*($proto_re*)\s*$/o
  1738.          # This may reference undefined functions:
  1739.          and not ($image eq 'T_PACKED' and $typemap eq $stdtypemap)) {
  1740.       $typemap{normalize_type($type)} = $image;
  1741.     }
  1742.       }
  1743.     }
  1744.     close(TYPEMAP) or die "Cannot close $typemap: $!";
  1745.   }
  1746.   %std_types = %types_seen;
  1747.   %types_seen = ();
  1748. }
  1749.  
  1750.  
  1751. sub normalize_type {        # Second arg: do not strip const's before \*
  1752.   my $type = shift;
  1753.   my $do_keep_deep_const = shift;
  1754.   # If $do_keep_deep_const this is heuristical only
  1755.   my $keep_deep_const = ($do_keep_deep_const ? '\b(?![^(,)]*\*)' : '');
  1756.   my $ignore_mods
  1757.     = "(?:\\b(?:(?:__const__|const)$keep_deep_const|static|inline|__inline__)\\b\\s*)*";
  1758.   if ($do_keep_deep_const) {    # Keep different compiled /RExen/o separately!
  1759.     $type =~ s/$ignore_mods//go;
  1760.   }
  1761.   else {
  1762.     $type =~ s/$ignore_mods//go;
  1763.   }
  1764.   $type =~ s/([^\s\w])/ $1 /g;
  1765.   $type =~ s/\s+$//;
  1766.   $type =~ s/^\s+//;
  1767.   $type =~ s/\s+/ /g;
  1768.   $type =~ s/\* (?=\*)/*/g;
  1769.   $type =~ s/\. \. \./.../g;
  1770.   $type =~ s/ ,/,/g;
  1771.   $types_seen{$type}++
  1772.     unless $type eq '...' or $type eq 'void' or $std_types{$type};
  1773.   $type;
  1774. }
  1775.  
  1776. my $need_opaque;
  1777.  
  1778. sub assign_typemap_entry {
  1779.   my $type = shift;
  1780.   my $otype = $type;
  1781.   my $entry;
  1782.   if ($tmask and $type =~ /$tmask/) {
  1783.     print "Type $type matches -o mask\n" if $opt_d;
  1784.     $entry = (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1785.   }
  1786.   elsif ($typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1787.     $type = normalize_type $type;
  1788.     print "Type mutation via typedefs: $otype ==> $type\n" if $opt_d;
  1789.     $entry = assign_typemap_entry($type);
  1790.   }
  1791.   # XXX good do better if our UV happens to be long long
  1792.   return "T_NV" if $type =~ /^(unsigned\s+)?long\s+(long|double)\z/;
  1793.   $entry ||= $typemap{$otype}
  1794.     || (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1795.   $typemap{$otype} = $entry;
  1796.   $need_opaque = 1 if $entry eq "T_OPAQUE_STRUCT";
  1797.   return $entry;
  1798. }
  1799.  
  1800. for (@vdecls) {
  1801.   print_tievar_xsubs(\*XS, $_, $vdecl_hash{$_});
  1802. }
  1803.  
  1804. if ($opt_x) {
  1805.   for my $decl (@$fdecls_parsed) { print_decl(\*XS, $decl) }
  1806.   if ($opt_a) {
  1807.     while (my($name, $struct) = each %structs) {
  1808.       print_accessors(\*XS, $name, $struct);
  1809.     }
  1810.   }
  1811. }
  1812.  
  1813. close XS;
  1814.  
  1815. if (%types_seen) {
  1816.   my $type;
  1817.   warn "Writing $ext$modpname/typemap\n";
  1818.   open TM, ">typemap" or die "Cannot open typemap file for write: $!";
  1819.  
  1820.   for $type (sort keys %types_seen) {
  1821.     my $entry = assign_typemap_entry $type;
  1822.     print TM $type, "\t" x (5 - int((length $type)/8)), "\t$entry\n"
  1823.   }
  1824.  
  1825.   print TM <<'EOP' if $need_opaque; # Older Perls do not have correct entry
  1826. #############################################################################
  1827. INPUT
  1828. T_OPAQUE_STRUCT
  1829.     if (sv_derived_from($arg, \"${ntype}\")) {
  1830.         STRLEN len;
  1831.         char  *s = SvPV((SV*)SvRV($arg), len);
  1832.  
  1833.         if (len != sizeof($var))
  1834.         croak(\"Size %d of packed data != expected %d\",
  1835.             len, sizeof($var));
  1836.         $var = *($type *)s;
  1837.     }
  1838.     else
  1839.         croak(\"$var is not of type ${ntype}\")
  1840. #############################################################################
  1841. OUTPUT
  1842. T_OPAQUE_STRUCT
  1843.     sv_setref_pvn($arg, \"${ntype}\", (char *)&$var, sizeof($var));
  1844. EOP
  1845.  
  1846.   close TM or die "Cannot close typemap file for write: $!";
  1847. }
  1848.  
  1849. } # if( ! $opt_X )
  1850.  
  1851. warn "Writing $ext$modpname/Makefile.PL\n";
  1852. open(PL, ">Makefile.PL") || die "Can't create $ext$modpname/Makefile.PL: $!\n";
  1853.  
  1854. my $prereq_pm;
  1855.  
  1856. if ( $compat_version < 5.00702 and $new_test )
  1857. {
  1858.   $prereq_pm = q%'Test::More'  =>  0%;
  1859. }
  1860. else
  1861. {
  1862.   $prereq_pm = '';
  1863. }
  1864.  
  1865. print PL <<"END";
  1866. use $compat_version;
  1867. use ExtUtils::MakeMaker;
  1868. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  1869. # the contents of the Makefile that is written.
  1870. WriteMakefile(
  1871.     NAME              => '$module',
  1872.     VERSION_FROM      => '$modpmname', # finds \$VERSION
  1873.     PREREQ_PM         => {$prereq_pm}, # e.g., Module::Name => 1.1
  1874.     (\$] >= 5.005 ?     ## Add these new keywords supported since 5.005
  1875.       (ABSTRACT_FROM  => '$modpmname', # retrieve abstract from module
  1876.        AUTHOR         => '$author <$email>') : ()),
  1877. END
  1878. if (!$opt_X) { # print C stuff, unless XS is disabled
  1879.   $opt_F = '' unless defined $opt_F;
  1880.   my $I = (((glob '*.h') || (glob '*.hh')) ? '-I.' : '');
  1881.   my $Ihelp = ($I ? '-I. ' : '');
  1882.   my $Icomment = ($I ? '' : <<EOC);
  1883.     # Insert -I. if you add *.h files later:
  1884. EOC
  1885.  
  1886.   print PL <<END;
  1887.     LIBS              => ['$extralibs'], # e.g., '-lm'
  1888.     DEFINE            => '$opt_F', # e.g., '-DHAVE_SOMETHING'
  1889. $Icomment    INC               => '$I', # e.g., '${Ihelp}-I/usr/include/other'
  1890. END
  1891.  
  1892.   my $C = grep {$_ ne "$modfname.c"}
  1893.     (glob '*.c'), (glob '*.cc'), (glob '*.C');
  1894.   my $Cpre = ($C ? '' : '# ');
  1895.   my $Ccomment = ($C ? '' : <<EOC);
  1896.     # Un-comment this if you add C files to link with later:
  1897. EOC
  1898.  
  1899.   print PL <<END;
  1900. $Ccomment    ${Cpre}OBJECT            => '\$(O_FILES)', # link all the C files too
  1901. END
  1902. } # ' # Grr
  1903. print PL ");\n";
  1904. if (!$opt_c) {
  1905.   my $generate_code =
  1906.     WriteMakefileSnippet ( C_FILE =>       $constscfname,
  1907.                            XS_FILE =>      $constsxsfname,
  1908.                            DEFAULT_TYPE => $opt_t,
  1909.                            NAME =>         $module,
  1910.                            NAMES =>        \@const_names,
  1911.                  );
  1912.   print PL <<"END";
  1913. if  (eval {require ExtUtils::Constant; 1}) {
  1914.   # If you edit these definitions to change the constants used by this module,
  1915.   # you will need to use the generated $constscfname and $constsxsfname
  1916.   # files to replace their "fallback" counterparts before distributing your
  1917.   # changes.
  1918. $generate_code
  1919. }
  1920. else {
  1921.   use File::Copy;
  1922.   use File::Spec;
  1923.   foreach my \$file ('$constscfname', '$constsxsfname') {
  1924.     my \$fallback = File::Spec->catfile('$fallbackdirname', \$file);
  1925.     copy (\$fallback, \$file) or die "Can't copy \$fallback to \$file: \$!";
  1926.   }
  1927. }
  1928. END
  1929.  
  1930.   eval $generate_code;
  1931.   if ($@) {
  1932.     warn <<"EOM";
  1933. Attempting to test constant code in $ext$modpname/Makefile.PL:
  1934. $generate_code
  1935. __END__
  1936. gave unexpected error $@
  1937. Please report the circumstances of this bug in h2xs version $H2XS_VERSION
  1938. using the perlbug script.
  1939. EOM
  1940.   } else {
  1941.     my $fail;
  1942.  
  1943.     foreach my $file ($constscfname, $constsxsfname) {
  1944.       my $fallback = File::Spec->catfile($fallbackdirname, $file);
  1945.       if (compare($file, $fallback)) {
  1946.         warn << "EOM";
  1947. Files "$ext$modpname/$fallbackdirname/$file" and "$ext$modpname/$file" differ.
  1948. EOM
  1949.         $fail++;
  1950.       }
  1951.     }
  1952.     if ($fail) {
  1953.       warn fill ('','', <<"EOM") . "\n";
  1954. It appears that the code in $ext$modpname/Makefile.PL does not autogenerate
  1955. the files $ext$modpname/$constscfname and $ext$modpname/$constsxsfname
  1956. correctly.
  1957.  
  1958. Please report the circumstances of this bug in h2xs version $H2XS_VERSION
  1959. using the perlbug script.
  1960. EOM
  1961.     } else {
  1962.       unlink $constscfname, $constsxsfname;
  1963.     }
  1964.   }
  1965. }
  1966. close(PL) || die "Can't close $ext$modpname/Makefile.PL: $!\n";
  1967.  
  1968. # Create a simple README since this is a CPAN requirement
  1969. # and it doesnt hurt to have one
  1970. warn "Writing $ext$modpname/README\n";
  1971. open(RM, ">README") || die "Can't create $ext$modpname/README:$!\n";
  1972. my $thisyear = (gmtime)[5] + 1900;
  1973. my $rmhead = "$modpname version $TEMPLATE_VERSION";
  1974. my $rmheadeq = "=" x length($rmhead);
  1975.  
  1976. my $rm_prereq;
  1977.  
  1978. if ( $compat_version < 5.00702 and $new_test )
  1979. {
  1980.    $rm_prereq = 'Test::More';
  1981. }
  1982. else
  1983. {
  1984.    $rm_prereq = 'blah blah blah';
  1985. }
  1986.  
  1987. print RM <<_RMEND_;
  1988. $rmhead
  1989. $rmheadeq
  1990.  
  1991. The README is used to introduce the module and provide instructions on
  1992. how to install the module, any machine dependencies it may have (for
  1993. example C compilers and installed libraries) and any other information
  1994. that should be provided before the module is installed.
  1995.  
  1996. A README file is required for CPAN modules since CPAN extracts the
  1997. README file from a module distribution so that people browsing the
  1998. archive can use it get an idea of the modules uses. It is usually a
  1999. good idea to provide version information here so that people can
  2000. decide whether fixes for the module are worth downloading.
  2001.  
  2002. INSTALLATION
  2003.  
  2004. To install this module type the following:
  2005.  
  2006.    perl Makefile.PL
  2007.    make
  2008.    make test
  2009.    make install
  2010.  
  2011. DEPENDENCIES
  2012.  
  2013. This module requires these other modules and libraries:
  2014.  
  2015.   $rm_prereq
  2016.  
  2017. COPYRIGHT AND LICENCE
  2018.  
  2019. Put the correct copyright and licence information here.
  2020.  
  2021. $licence
  2022.  
  2023. _RMEND_
  2024. close(RM) || die "Can't close $ext$modpname/README: $!\n";
  2025.  
  2026. my $testdir  = "t";
  2027. my $testfile = "$testdir/$modpname.t";
  2028. unless (-d "$testdir") {
  2029.   mkdir "$testdir" or die "Cannot mkdir $testdir: $!\n";
  2030. }
  2031. warn "Writing $ext$modpname/$testfile\n";
  2032. my $tests = @const_names ? 2 : 1;
  2033.  
  2034. open EX, ">$testfile" or die "Can't create $ext$modpname/$testfile: $!\n";
  2035.  
  2036. print EX <<_END_;
  2037. # Before `make install' is performed this script should be runnable with
  2038. # `make test'. After `make install' it should work as `perl $modpname.t'
  2039.  
  2040. #########################
  2041.  
  2042. # change 'tests => $tests' to 'tests => last_test_to_print';
  2043.  
  2044. _END_
  2045.  
  2046. my $test_mod = 'Test::More';
  2047.  
  2048. if ( $old_test or ($compat_version < 5.007 and not $new_test ))
  2049. {
  2050.   my $test_mod = 'Test';
  2051.  
  2052.   print EX <<_END_;
  2053. use Test;
  2054. BEGIN { plan tests => $tests };
  2055. use $module;
  2056. ok(1); # If we made it this far, we're ok.
  2057.  
  2058. _END_
  2059.  
  2060.    if (@const_names) {
  2061.      my $const_names = join " ", @const_names;
  2062.      print EX <<'_END_';
  2063.  
  2064. my $fail;
  2065. foreach my $constname (qw(
  2066. _END_
  2067.  
  2068.      print EX wrap ("\t", "\t", $const_names);
  2069.      print EX (")) {\n");
  2070.  
  2071.      print EX <<_END_;
  2072.   next if (eval "my \\\$a = \$constname; 1");
  2073.   if (\$\@ =~ /^Your vendor has not defined $module macro \$constname/) {
  2074.     print "# pass: \$\@";
  2075.   } else {
  2076.     print "# fail: \$\@";
  2077.     \$fail = 1;
  2078.   }
  2079. }
  2080. if (\$fail) {
  2081.   print "not ok 2\\n";
  2082. } else {
  2083.   print "ok 2\\n";
  2084. }
  2085.  
  2086. _END_
  2087.   }
  2088. }
  2089. else
  2090. {
  2091.   print EX <<_END_;
  2092. use Test::More tests => $tests;
  2093. BEGIN { use_ok('$module') };
  2094.  
  2095. _END_
  2096.  
  2097.    if (@const_names) {
  2098.      my $const_names = join " ", @const_names;
  2099.      print EX <<'_END_';
  2100.  
  2101. my $fail = 0;
  2102. foreach my $constname (qw(
  2103. _END_
  2104.  
  2105.      print EX wrap ("\t", "\t", $const_names);
  2106.      print EX (")) {\n");
  2107.  
  2108.      print EX <<_END_;
  2109.   next if (eval "my \\\$a = \$constname; 1");
  2110.   if (\$\@ =~ /^Your vendor has not defined $module macro \$constname/) {
  2111.     print "# pass: \$\@";
  2112.   } else {
  2113.     print "# fail: \$\@";
  2114.     \$fail = 1;
  2115.   }
  2116.  
  2117. }
  2118.  
  2119. ok( \$fail == 0 , 'Constants' );
  2120. _END_
  2121.   }
  2122. }
  2123.  
  2124. print EX <<_END_;
  2125. #########################
  2126.  
  2127. # Insert your test code below, the $test_mod module is use()ed here so read
  2128. # its man page ( perldoc $test_mod ) for help writing this test script.
  2129.  
  2130. _END_
  2131.  
  2132. close(EX) || die "Can't close $ext$modpname/$testfile: $!\n";
  2133.  
  2134. unless ($opt_C) {
  2135.   warn "Writing $ext$modpname/Changes\n";
  2136.   $" = ' ';
  2137.   open(EX, ">Changes") || die "Can't create $ext$modpname/Changes: $!\n";
  2138.   @ARGS = map {/[\s\"\'\`\$*?^|&<>\[\]\{\}\(\)]/ ? "'$_'" : $_} @ARGS;
  2139.   print EX <<EOP;
  2140. Revision history for Perl extension $module.
  2141.  
  2142. $TEMPLATE_VERSION  @{[scalar localtime]}
  2143. \t- original version; created by h2xs $H2XS_VERSION with options
  2144. \t\t@ARGS
  2145.  
  2146. EOP
  2147.   close(EX) || die "Can't close $ext$modpname/Changes: $!\n";
  2148. }
  2149.  
  2150. warn "Writing $ext$modpname/MANIFEST\n";
  2151. open(MANI,'>MANIFEST') or die "Can't create MANIFEST: $!";
  2152. my @files = grep { -f } (<*>, <t/*>, <$fallbackdirname/*>, <$modpmdir/*>);
  2153. if (!@files) {
  2154.   eval {opendir(D,'.');};
  2155.   unless ($@) { @files = readdir(D); closedir(D); }
  2156. }
  2157. if (!@files) { @files = map {chomp && $_} `ls`; }
  2158. if ($^O eq 'VMS') {
  2159.   foreach (@files) {
  2160.     # Clip trailing '.' for portability -- non-VMS OSs don't expect it
  2161.     s%\.$%%;
  2162.     # Fix up for case-sensitive file systems
  2163.     s/$modfname/$modfname/i && next;
  2164.     $_ = "\U$_" if $_ eq 'manifest' or $_ eq 'changes';
  2165.     $_ = 'Makefile.PL' if $_ eq 'makefile.pl';
  2166.   }
  2167. }
  2168. print MANI join("\n",@files), "\n";
  2169. close MANI;
  2170.